home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / demos / r-z / termitedemo / install-demo < prev    next >
Text File  |  1995-01-09  |  5KB  |  155 lines

  1. failat 21
  2.  
  3. echo "*N*NWelcome to the Termite demo!*N"
  4.  
  5. echo "There are a few things which must be installed or configured before"
  6. echo "the demo can be run.  This installation script will guide you through"
  7. echo "that process.  The full version of Termite comes with a mouse-driven"
  8. echo "Installer script, for fast and easy installation.*N"
  9.  
  10. echo "Please make sure you have run this installation program from within"
  11. echo "the drawer containing all the Termite Demo files, and...*N"
  12.  
  13. ask "Press  RETURN  to continue"
  14.  
  15. ; -- IBM Font ---------------
  16.  
  17. echo "*NIBM Font*N"
  18.  
  19. echo "Installing the IBM.font will allow you to view the IBM character"
  20. echo "set if you are online to a service that uses it.  If you already"
  21. echo "have this font, an equivalent font, or do not wish to use the"
  22. echo "IBM character set, then you may answer 'no'.*N"
  23.  
  24. ask "Install the IBM font to the FONTS: directory?"
  25.  
  26. if warn
  27.     copy fonts fonts: all quiet
  28.     skip DoneFont
  29. endif
  30.  
  31. lab DoneFont
  32.  
  33. ; -- AmigaGuide Library -----
  34.  
  35. echo "*NAmigaGuide Library*N"
  36.  
  37. echo "Termite requires version 34 or higher of the amigaguide.library."
  38. echo "You currently have:*N"
  39.  
  40. version amigaguide.library
  41.  
  42. echo "*NIf you have a higher version than 34, answer 'no'.*N"
  43.  
  44. ask "Install the amigaguide.library v34 to the LIBS: directory?"
  45.  
  46. if warn
  47.     copy libs/amigaguide.library libs: quiet
  48.     echo "*NWhen the installation of the demo is complete, you should"
  49.     echo "reboot your Amiga, to insure that the correct version of the"
  50.     echo "library is being used.*N"
  51.  
  52.     ask "Press  RETURN  to continue"
  53.  
  54.     skip DoneAGLib
  55. endif
  56.  
  57. lab DoneAGLib
  58.  
  59. ; -- ASL Library ------------
  60.  
  61. echo "*NASL Library*N"
  62.  
  63. echo "Termite requires version 38 or higher of the asl.library."
  64. echo "You currently have:*N"
  65.  
  66. version asl.library
  67.  
  68. echo "*NIf you have a higher version than 38, answer 'no'.*N"
  69.  
  70. ask "Install the asl.library v38 to the LIBS: directory?"
  71.  
  72. if warn
  73.     copy libs/asl.library libs: quiet
  74.     echo "*NWhen the installation of the demo is complete, you should"
  75.     echo "reboot your Amiga, to insure that the correct version of the"
  76.     echo "library is being used.*N"
  77.  
  78.     ask "Press  RETURN  to continue"
  79.  
  80.     skip DoneASLLib
  81. endif
  82.  
  83. lab DoneASLLib
  84.  
  85. ; -- XPR Libraries ----------
  86.  
  87. echo "*NXPR Libraries*N"
  88.  
  89. echo "Termite supports external protocol (XPR) libraries for file"
  90. echo "transfers.  You will need at least one of these libraries if you"
  91. echo "intend to upload or download.*N"
  92.  
  93. echo "There are a few XPRs included with this demo, and they can be"
  94. echo "installed now if you wish.  If you already have XPR libraries"
  95. echo "on your system, you may wish to bypass this step, as this"
  96. echo "installation script will not check version numbers of existing"
  97. echo "libraries, and you may inadvertently write an older version"
  98. echo "over a newer version.*N"
  99.  
  100. ask "Install the included XPR libraries to the LIBS: directory?"
  101.  
  102. if warn
  103.     copy xlibs/xpr#?.library libs: quiet
  104.  
  105.     skip DoneXPR
  106. endif
  107.  
  108. lab DoneXPR
  109.  
  110. ; -- XEM Libraries ----------
  111.  
  112. echo "*NXEM Libraries*N"
  113.  
  114. echo "Termite supports external emulation (XEM) libraries for additional"
  115. echo "terminal emulation support.  These libraries are not required.  They"
  116. echo "merely extend the functionality of Termite.*N"
  117.  
  118. echo "There are a few XEMs included with this demo, and they can be"
  119. echo "installed now if you wish.  If you already have XEM libraries"
  120. echo "on your system, you may wish to bypass this step, as this"
  121. echo "installation script will not check version numbers of existing"
  122. echo "libraries, and you may inadvertently write an older version"
  123. echo "over a newer version.*N"
  124.  
  125. ask "Install the included XEM libraries to the LIBS: directory?"
  126.  
  127. if warn
  128.     copy xlibs/xem#?.library libs: quiet
  129.  
  130.     skip DoneXEM
  131. endif
  132.  
  133. lab DoneXEM
  134.  
  135. ; -- Installation complete --
  136.  
  137. echo "*NInstallation Complete!*N"
  138.  
  139. echo "If you have correctly answered the above questions, all required"
  140. echo "files should now be set up on your system.  If you need to move"
  141. echo "the Termite demo to another drawer or hard drive partition,"
  142. echo "just drag the entire Termite demo drawer to the desired location."
  143. echo "There are no 'Assign' commands necessary.*N"
  144.  
  145. echo "Double-click the Termite icon to start the demo.  You will"
  146. echo "be given more information when the program starts.*N"
  147.  
  148. echo "We hope you enjoy this demonstration version of Termite.  If"
  149. echo "you are interested in purchasing the full package, contact"
  150. echo "Oregon Research or HiSoft at the addresses given in the"
  151. echo "demo.*N"
  152.  
  153. ask "Press  RETURN  to continue"
  154.  
  155. echo "*N*N*N"